summaryrefslogtreecommitdiff
path: root/src/app/api/comments/[...comment]/route.ts
blob: 1da87dbd640826d13e6d36ceb24da609cf4ed92c (plain)
1
2
3
4
5
6
7
8
9
import { auth, storage } from '@/server/comments/config';
import { NextComment } from '@fuma-comment/server/next';

export const { GET, DELETE, PATCH, POST } = NextComment({
  // role: 'database', todo use role in auth
  mention: { enabled: true },
  auth: auth,
  storage: storage,
});